ArcPad Style File Schema
SIMPLEMARKERSYMBOL Element
See Also  Send comments on this topic.
ArcPad Style File Schema : SIMPLEMARKERSYMBOL Element

Glossary Item Box

Description

Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.

Diagram

SIMPLEMARKERSYMBOL Element

Overview

SIMPLEMARKERSYMBOL
Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.
angle optional Restriction of xs:double
color optional xs:string
outline optional xs:string
outlinetype optional Restriction of xs:string
outlinewidth optional Restriction of xs:int
width optional Restriction of xs:double
type optional Restriction of xs:string

Attributes

NameTypeUseDefaultFixedDescription
angleRestriction of xs:doubleoptional0.0  
colorxs:stringoptional   
outlinexs:stringoptional   
outlinetypeRestriction of xs:stringoptionalsolid  
outlinewidthRestriction of xs:intoptional0  
widthRestriction of xs:doubleoptional3  
typeRestriction of xs:stringoptionalcircle  

Examples

Source

<xs:element name="SIMPLEMARKERSYMBOL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used to symbolize point features using one of the predefined symbol types: circle, square, cross, triangle, star, X, or diamond.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute default="0" ref="angle"></xs:attribute>
    <xs:attribute ref="color" default="0,0,0"></xs:attribute>
    <xs:attribute ref="outline" use="optional" default="0,0,0" />
    <xs:attribute ref="outlinetype" />
    <xs:attribute ref="outlinewidth" />
    <xs:attribute name="width" default="3">
      <xs:simpleType>
        <xs:restriction base="xs:double">
          <xs:minInclusive value="0.0" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute name="type" default="circle">
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="circle" />
          <xs:enumeration value="square" />
          <xs:enumeration value="cross" />
          <xs:enumeration value="triangle" />
          <xs:enumeration value="star" />
          <xs:enumeration value="x" />
          <xs:enumeration value="diamond" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2012 All Rights Reserved.